home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 December / PCWorld_2007-12_cd.bin / domacnost a kancelar / autoit / autoit-v3-setup.exe / Examples / Helpfile / _PathSplit.au3 < prev    next >
Encoding:
Text File  |  2007-09-08  |  204 b   |  5 lines

  1. #include <file.au3>
  2. #include <array.au3>
  3. Dim $szDrive, $szDir, $szFName, $szExt
  4. $TestPath = _PathSplit(@ScriptFullPath, $szDrive, $szDir, $szFName, $szExt)
  5. _ArrayDisplay($TestPath,"Demo _PathSplit()")